home *** CD-ROM | disk | FTP | other *** search
Makefile | 1998-08-12 | 1.1 KB | 27 lines |
-
- /* Copyright (c) Mark J. Kilgard, 1997. */
-
- #include "../../Glut.cf"
-
- TARGETS = showtiff textiff writetiff depthdof scalebias tiffsift
-
- SRCS = showtiff.c textiff.c writetiff.c depthdof.c scalebias.c tiffsift.c
-
- AllTarget($(TARGETS))
-
- TIFF_LIB = -ltiff
- TIFF_DEPLIB =
- #
- # You may actually need the following definition of TIFF_LIB for
- # more recent TIFF library releases:
- #TIFF_LIB = -ltiff -ljpeg -lz
-
- NormalProgramTarget(showtiff,showtiff.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
- NormalProgramTarget(textiff,textiff.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
- NormalProgramTarget(tiffsift,tiffsift.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
- NormalProgramTarget(writetiff,writetiff.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
- NormalProgramTarget(depthdof,depthdof.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
- NormalProgramTarget(scalebias,scalebias.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
-
- DependTarget()
-